home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / in_pcb.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  2KB  |  50 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)in_pcb.h    7.2 (Berkeley) 12/7/87
  13.  */
  14.  
  15. #ifndef _IN_PCB
  16. #define _IN_PCB
  17.  
  18. /*
  19.  * Common structure pcb for internet protocol implementation.
  20.  * Here are stored pointers to local and foreign host table
  21.  * entries, local and foreign socket numbers, and pointers
  22.  * up (to a socket structure) and down (to a protocol-specific)
  23.  * control block.
  24.  */
  25. struct inpcb {
  26.     struct    inpcb *inp_next,*inp_prev;
  27.                     /* pointers to other pcb's */
  28.     struct    inpcb *inp_head;    /* pointer back to chain of inpcb's
  29.                        for this protocol */
  30.     struct    in_addr inp_faddr;    /* foreign host table entry */
  31.     u_short    inp_fport;        /* foreign port */
  32.     struct    in_addr inp_laddr;    /* local host table entry */
  33.     u_short    inp_lport;        /* local port */
  34.     struct    socket *inp_socket;    /* back pointer to socket */
  35.     caddr_t    inp_ppcb;        /* pointer to per-protocol pcb */
  36.     struct    route inp_route;    /* placeholder for routing entry */
  37.     struct    mbuf *inp_options;    /* IP options */
  38. };
  39.  
  40. #define    INPLOOKUP_WILDCARD    1
  41. #define    INPLOOKUP_SETLOCAL    2
  42.  
  43. #define    sotoinpcb(so)    ((struct inpcb *)(so)->so_pcb)
  44.  
  45. #ifdef KERNEL
  46. struct    inpcb *in_pcblookup();
  47. #endif
  48.  
  49. #endif _IN_PCB
  50.